home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 September / Chip_2002-09_cd1.bin / internet / regedit / install / cedt345.exe / template / hello world program.cpp < prev    next >
C/C++ Source or Header  |  2001-10-22  |  134b  |  9 lines

  1. // basic template file for C++
  2.  
  3. #include <iostream.h>
  4.  
  5. void main(int argc, char * argv[])
  6. {
  7.     cout << "hello world" << endl;
  8. }
  9.